home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 109
/
Vol 109.iso
/
games
/
let_it_f.swf
/
scripts
/
DefineSprite_769
/
frame_1
/
DoAction.as
Wrap
Text File
|
2008-11-12
|
508b
|
19 lines
stop();
count = 0;
maxcount = Math.round(_root.starttimer / 10) * 24;
this.onEnterFrame = function()
{
if(_root.watering_plants._currentframe == 1)
{
if(this == _root["c" + _root.corntouse] && c <= 10 && (_root.wait != true || _root.wait == true && _root.waterismoving == true))
{
count++;
gotoAndStop(Math.round(count / maxcount * 200));
}
else if(_currentframe > 1 && _currentframe < 200)
{
gotoAndPlay(200);
}
}
};